home *** CD-ROM | disk | FTP | other *** search
/ Cream of the Crop 20 / Cream of the Crop 20 (Terry Blount) (1996).iso / program / vol15n11.zip / HKD.ZIP / HKDSRC.ZIP / HKDPDLG.H < prev    next >
C/C++ Source or Header  |  1996-03-24  |  988b  |  42 lines

  1. // HKDpDlg.h : header file
  2. //
  3. // HotKey Detective version 1.0
  4. // Copyright (c) 1996 Ziff-Davis Publishing
  5. // First published in PC Magazine June 11, 1996
  6. // Author: Gregory A. Wolking
  7.  
  8. /////////////////////////////////////////////////////////////////////////////
  9. // CHKDPointDlg dialog
  10.  
  11. class CHKDPointDlg : public CDialog
  12. {
  13. // Construction
  14. public:
  15.     int m_PointSize;
  16.     CHKDPointDlg(CWnd* pParent = NULL);   // standard constructor
  17.  
  18. // Dialog Data
  19.     //{{AFX_DATA(CHKDPointDlg)
  20.     enum { IDD = IDD_DLG_POINTSIZE };
  21.     CComboBox    m_lstPoints;
  22.     //}}AFX_DATA
  23.  
  24.  
  25. // Overrides
  26.     // ClassWizard generated virtual function overrides
  27.     //{{AFX_VIRTUAL(CHKDPointDlg)
  28.     protected:
  29.     virtual void DoDataExchange(CDataExchange* pDX);    // DDX/DDV support
  30.     //}}AFX_VIRTUAL
  31.  
  32. // Implementation
  33. protected:
  34.  
  35.     // Generated message map functions
  36.     //{{AFX_MSG(CHKDPointDlg)
  37.     virtual BOOL OnInitDialog();
  38.     afx_msg void OnSelchangelstPoints();
  39.     //}}AFX_MSG
  40.     DECLARE_MESSAGE_MAP()
  41. };
  42.